home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / KA9QBINK.ZIP / KA9QBINK.ZRP / REGION17.NET < prev   
Encoding:
Text File  |  1995-12-11  |  4.1 KB  |  127 lines

  1. #   REGION17.NET
  2. #
  3. #   This is the main configuration and instruction file which NET15B.EXE
  4. #   uses to log on to your Internet Service Provider (ISP) and then to
  5. #   initiate ftp to the Region 17 FTP server.  It calls first the
  6. #   CONNECT.DIL and then the REGION17.FTP file.
  7. #
  8. #   Lines with a '#' are comments and are ignored.
  9. #
  10. #   ==================================================================
  11. #
  12. #   This sets the timer to millisec on AT's vs. clock ticks:
  13. #
  14. isat on
  15. #
  16. #   This is the attach command.  It should show the correct comm port,
  17. #   interupt and port speed for your system.  If the port uses a 16550A
  18. #   chip, it will be detected automatically and the FIFOs enabled.
  19. #
  20. #   Format: attach  asy  <ioaddr>  <vector>  ax25  |  nrs | ppp | slip
  21. #                        <iface> <bufsize> <mtu> <speed> [<crv>]
  22. #
  23. #      asy    asynchronous serial port (hardware type being attached)
  24. #      0x2f8  io address for comm 2              (0x3f8 for comm 1)
  25. #      3      vector (interupt) for comm 2           (4 for comm 1)
  26. #      ppp    service type (slip is the alternative)
  27. #      pp0    arbitrary character string assigned to this interface
  28. #      4096   receive buffer in bytes
  29. #      8192   transmit buffer (Maximum Transmission Unit) in bytes
  30. #      38400  port speed in bits per second
  31. #      r      optional  flags:  c enables RTS/CTS detection
  32. #                               r enables RLSD (Carrier Detect) physical
  33. #                                 line sensing
  34. #                               v enables Van Jacobson TCP/IP Header
  35. #                                 Compression, and is valid only for SLIP
  36. #
  37. attach asy 0x2f8 3 ppp pp0 4096 8192 38400 r
  38. #
  39. #   This sets masks.  You should not have to modify this line for PPP
  40. #   connections:
  41. #
  42. ifconfig pp0 broadcast 255.255.255.255 netmask 0x00000000
  43. #
  44. #   This sets up various parameters:
  45. #
  46. ppp pp0 trace
  47. ppp pp0 quick
  48. ppp pp0 lcp open
  49. #
  50. #   A quick primer on IP addresses:
  51. #
  52. #   Local Address:  The IP address permanently assigned to the ISP.
  53. #   Dynamic Address:  The IP address temporarily assigned to you on log-in.
  54. #   DNS Address:  The IP address for the Domain Name Server on the ISP.
  55. #
  56. #   This is the IP address for your Internet Service Provider (ISP).  It
  57. #   is usually given on screen during the log-in procedure:
  58. #
  59. ppp pp0 ipcp local address 205.206.104.25
  60. #
  61. #   Another parameter:
  62. #
  63. ppp pp0 ipcp open
  64. #
  65. #   This is the idle timeout, which causes NET15B.EXE to exit back to DOS:
  66. #
  67. ppp pp0 idle 20 exit
  68. #
  69. route add default pp0
  70. ip ttl 64
  71. tcp mss 1460
  72. tcp window 11680
  73. tcp irtt 1600
  74. #
  75. #   This line shows your ISP's Domain Name Server (DNS) IP address for
  76. #   looking up the IP address for the FTP site.  It is usually given in
  77. #   plain text on screen just after you log-in to your ISP:
  78. #
  79. domain addserver 205.206.104.3
  80. #
  81. #   This is the name of your ISP.  If your user name is
  82. #   'jblow@somewhere.com' then this will be 'somewhere.com':
  83. #
  84. domain suffix somewhere.com
  85. #
  86. domain cache clean on
  87. #
  88. #   This is the full path and filename for the NET15B.EXE log file:
  89. #
  90. log u:\ka9q\logs\ka9q.log
  91. #
  92. #   This negotiates the  dynamic address before allowing ftp commands:
  93. #
  94. inline on
  95. #
  96. ftpopt verbose 3
  97. #
  98. #   This sets the default transfer type (binary):
  99. #
  100. ftpopt type bin
  101. #
  102. ftpopt pager off
  103. ftpopt wrap 79
  104. #
  105. #   This allows the ftp script to be run automatically.  For testing in
  106. #   interactive mode, it should be commented out:
  107. #
  108. ftpopt ftnmode on
  109. #
  110. #   This is the command to run the dialer script, CONNECT.DIL, and to
  111. #   exit NET15B.EXE if it does not connect:
  112. #
  113. dial pp0 connect.dil failexit
  114. #
  115. #   This is the command to start the FTP session using the REGION17.FTP
  116. #   script file.  NOTE: the first line of the script file must be
  117. #   'open ftp.island.net', and there can be no comment lines in the
  118. #   script.  In the line below, the asteriks are dummy parameters which
  119. #   must be present to allow invoking script file without user input.
  120. #   For testing in interactive mode, it should be commented out:
  121. #
  122. ftp * * \ka9q\region17.ftp
  123. #
  124. #   After completion of the above script, the ppp idle timeout will
  125. #   cause an exit to dos.
  126. #
  127.